:root{
   --bgColor:#035294;
}



.banner_box {
  background: url("../../images//bg.png") no-repeat center;
  background-size: 100% 100%;
  background-position: top;
  height: 320px;
}
.banner_box .ght_mian {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.banner_box .ght_mian .hgt_text {
  color: #de1c31;
}
.banner_box .ght_mian .hgt_input {
  background-color: #fff;
  height: 40px;
  width: 480px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 0 10px;
  margin-top: 20px;
}
.banner_box .ght_mian .hgt_input input {
  outline: none;
  border: none;
  flex: 1;
}
.banner_box .ght_mian .hgt_input .search {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.banner_box .ght_mian .hgt_input .search img {
  width: 100%;
  height: 100%;
}
.banner_box .ght_mian .hgt_text .hgt_item_zh {
  font-size: 40px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: bold;
  color: #de1c31;
  line-height: 47px;
  letter-spacing: 4px;
  margin: 10px 0;
}
.banner_box .ght_mian .hgt_text .hgt_item_es {
  font-size: 16px;
  font-family: Arial-Bold, Arial;
  font-weight: bold;
  color: #de1c31;
  line-height: 19px;
  letter-spacing: 8px;
}
.banner_box .ght_mian .logo {
  width: 85px;
  height: 76px;
}
.banner_box .ght_mian .logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.banner_box .banner_title {
  width: 900px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: space-between;
}
.banner_box .banner_title .banner_lt {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 16px;
}
.banner_box .banner_title .banner_rt {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 16px;
}
.banner_box .banner_title .banner_rt span {
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
.banner_box .banner_title .banner_rt span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #fff;
  /* inset: 0; */
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
/* tab栏 */
.hgt_tabs_box {
  height: 60px;
  background-color: var(--bgColor);
}
.hgt_tabs_box .hgt_tabs {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.hgt_tabs_box .hgt_tabs .hgt_tab {
  cursor: pointer;
  font-size: 20px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #fff;
  line-height: 23px;
  position: relative;
}
.hgt_tabs_box .hgt_tabs .hgt_tab.active::after {
  position: absolute;
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 8px;
  bottom: -6px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}